home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
usr
/
share
/
arm
/
uninstall
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2012-05-18
|
232 b
|
17 lines
#!/bin/sh
files="/usr/bin/arm /usr/share/man/man1/arm.1.gz /usr/share/arm"
for i in $files
do
if [ -f $i -o -d $i ]; then
rm -rf $i
if [ $? = 0 ]; then
echo "removed $i"
else
exit 1
fi
fi
done